POSITION MOUSE

This command will change the position of the mouse pointer.

  Syntax
POSITION MOUSE X,Y
  Parameters
X
Integer
The x position of mouse
Y
Integer
The y position of mouse

  Returns

This command does not return a value.

  Description

By specifying a 2D screen coordinate using integer values, you can relocate the location of the mouse pointer at any time.

  Example Code
do
cls
print "mousemovex "+str$(mousemovex())
print "mousemovey "+str$(mousemovey())
print "mousemovez "+str$(mousemovez())
print "mouse position x "+str$(mousex())
print "mouse position y "+str$(mousey())
print "mouse position z "+str$(mousez())
print "Press 1 to hide mouse"
print "Press 2 to show mouse"
print "Press 3 to change mouse image"
print "Press 4 to change mouse image back"
print "Press 5 to position mouse to top of screen"
if scancode()=2 then hide mouse
if scancode()=3 then show mouse
if scancode()=4 then change mouse 1
if scancode()=5 then change mouse 0
if scancode()=6 then position mouse mousex(),0
if mouseclick()=1 then print "left mouse button"
if mouseclick()=2 then print "right mouse button"
loop
end
  See also

INPUT Commands Menu
Index